home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000069_fdc@columbia.edu_Thu May 2 11:38:13 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  52 lines

  1. Article: 13360 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Problem getting enter key to work
  6. Date: 2 May 2002 11:37:47 -0400
  7. Organization: Columbia University
  8. Lines: 35
  9. Message-ID: <aarmgb$m59$1@watsol.cc.columbia.edu>
  10. References: <3CD15ABB.3020709@usg.edu>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1020353883 29960 128.59.39.139 (2 May 2002 15:38:03 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 2 May 2002 15:38:03 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13360
  16.  
  17. In article <3CD15ABB.3020709@usg.edu>, Bob Jones  <bob.jones@usg.edu> wrote:
  18. : Okay folks, I have a problem here and hopefully one of you will be 
  19. : able to help me.  I have just installed the latest version of kermit 
  20. : on my Red Hat 7.2 box.  I have connected a serial cable from that box 
  21. : to a new Sun Netra T1.  I start the Sun up and connect kermit using 
  22. : the following commands:
  23. : set modem type none   ; There is no modem
  24. : set line /dev/ttyS0   ; Specify device name
  25. : set carrier-watch off ; If DTR CD are not cross-connected
  26. : set speed 9600        ; Or other desired speed
  27. : set flow rts/cts      ; If RTS and CTS are cross-connected
  28. : set parity even       ; (or "mark" or "space", if necessary)
  29. : set stop-bits 1       ; (rarely necessary)
  30. : connect               ; Enter Connect (terminal) state
  31. : I then send a ^\B to emulate the stop-a and get to the ok prompt.  Now 
  32. : this is where my problem begins.
  33. : I cannot execute any command at the ok prompt.  I type in the command 
  34. : (let's say .version) and then hit the enter key and nothing happens. 
  35. : I've tried ^m which does nothing and ^j which would give an error of 
  36. : .version ? and so on.
  37. : So, anyone know what's going on?  Is there something I can do to get 
  38. : the enter key to work or is there a control sequence to emulate the 
  39. : enter key.
  40. Are you sure you need even parity?
  41.  
  42. Enter sends Carriage Return, ASCII 13 = 00001101.  With even parity,
  43. this becomes 10001101.  If the Sun console does not expect even parity,
  44. it won't recognize the character.  Try it with SET PARITY NONE.
  45.  
  46. - Frank
  47.